home *** CD-ROM | disk | FTP | other *** search
/ Delphi Magazine Collection 2001 / Delphi Magazine Collection 20001 (2001).iso / DISKS / ISSUE13 / IDAPI / SETWKDIR.DPR < prev    next >
Encoding:
Text File  |  1996-02-18  |  245 b   |  15 lines

  1. program Setwkdir;
  2.  
  3. uses
  4.   Forms,
  5.   Wkdir in 'WKDIR.PAS' {Form1},
  6.   Chdir in 'CHDIR.PAS' {ChDirDlg};
  7.  
  8. {$R *.RES}
  9.  
  10. begin
  11.   Application.CreateForm(TForm1, Form1);
  12.   Application.CreateForm(TChDirDlg, ChDirDlg);
  13.   Application.Run;
  14. end.
  15.